home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Commodities / ClipTool / Installer-stuff (unfinished) / Install_ClipTool
Encoding:
Text File  |  1996-09-27  |  1.4 KB  |  63 lines

  1. ; DEBUG:
  2. (user 2)
  3. (welcome)
  4.  
  5. (if (= 1 (askbool
  6.            (prompt "Do you want to install language catalogs?")
  7.            (help "not yet")
  8.            (choices "Yes" "No")))
  9.   ((askoptions
  10.      (prompt "Select languages to be installed")
  11.      (help "You're kidding")
  12.      (choices "dansk (Danish)" "Deutsch (German)")
  13.      (default 0))
  14.   )
  15. )
  16.  
  17. (if (= 1 (askbool
  18.            (prompt
  19.              "Do you want to install the ARexx examples?\n"
  20.              "(Scripts with conflicting filenames\n"
  21.              "will not be installed)")
  22.            (help "hmm...")
  23.            (choices "Yes" "No")))
  24.   (askdir
  25.     (prompt "Select destination")
  26.     (help @askdir-help)
  27.     (default "REXX:")
  28.     (disk)
  29.   )
  30.   (message "Installing AREXX examples...")
  31. )
  32.  
  33. (if (= 1 (askbool
  34.           (prompt
  35.             "Do you want to customize the ClipTool TOOLTYPES?\n"
  36.             "They can always be modified later, using the\n"
  37.             "Workbench menuitem 'Information'.")
  38.           (help "...")
  39.           (choices "Yes" "No")))
  40.   (
  41.     (set ttpriority
  42.       (asknumber
  43.         (prompt "Enter priority (CX_PRIORITY)")
  44.         (help
  45.           "The priority must be a number between -128 and 127.")
  46.         (range -128 127)
  47.         (default 0)
  48.       )
  49.     )
  50.   )
  51. )
  52.  
  53.  
  54. ;      "CX_POPKEY"
  55. ;      "CX_POPUP"
  56. ;      "EMBOSSED"
  57. ;      "CREATEICONS"
  58. ;      "UNIT"
  59. ;      "APPICON"
  60. ;      "PORTNAME"
  61.  
  62.  
  63. (tooltype (dest "ClipTool.info"))